home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-09-05 | 414 b | 25 lines | [TEXT/CWIE] |
- /* sys/stat.h */
-
-
- #ifndef _STAT
- #include <stat.h>
- #endif
-
- /* these don't go here but it works to fool mosml's unix.c */
-
- #ifndef F_OK
- #include <sys/unistd.h>
- #endif
-
- char *realpath( char *linkname, char *buffer );
- long readlink( char *linkname, char *buffer, long maxlen );
-
- #ifdef __MWERKS__
- // oops, I think MWERKS stat IS lstat
- #define lstat stat
- #else
- int lstat( char *path, struct stat *buf );
- #endif
-
- /* */
-